UNCLASSIFIED

Commit 7dbd5f46 authored by Ryan Garcia's avatar Ryan Garcia
Browse files

Merge branch 'fix-np' into 'main'

Fix label for Istio NP, in NS policy change

See merge request !25
parents b0eb4d20 8d548afb
Pipeline #306571 passed with stages
in 4 minutes and 50 seconds
......@@ -4,6 +4,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
---
## [0.0.6-bb.0] - 2021-06-09
### Fixed
- Bug with istio network policy, allow egress in ns
## [0.0.5-bb.0] - 2021-06-02
### Changed
......
apiVersion: v2
name: twistlock
version: 0.0.5-bb.0
version: 0.0.6-bb.0
appVersion: 21.04.412
dependencies:
- name: gluon
......
......@@ -2,13 +2,17 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: ingress-allow-ns
namespace: "{{ .Release.Namespace }}"
name: allow-in-ns
namespace: {{ .Release.Namespace }}
spec:
ingress:
- from:
- podSelector: {} # all pods in namespace
podSelector: {} # all pods
podSelector: {}
policyTypes:
- Ingress
- Egress
ingress:
- from:
- podSelector: {}
egress:
- to:
- podSelector: {}
{{- end }}
......@@ -7,7 +7,7 @@ metadata:
spec:
podSelector:
matchLabels:
app: twistlock-console
name: twistlock-console
policyTypes:
- Ingress
ingress:
......@@ -20,5 +20,7 @@ spec:
{{- toYaml .Values.networkPolicies.ingressLabels | nindent 12}}
ports:
- port: 8081 #Default UI console Port
protocol: TCP
- port: 8083 #TLS configured UI console Port
protocol: TCP
{{- end }}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment