wip
This commit is contained in:
parent
5507c7c7dc
commit
01e146db7c
6 changed files with 129 additions and 8 deletions
31
helm-chart/templates/networkpolicy.yaml
Normal file
31
helm-chart/templates/networkpolicy.yaml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: NetworkPolicy
|
||||
metadata:
|
||||
name: {{ .Values.name }}
|
||||
namespace: {{ .Values.namespace | default .Values.name }}
|
||||
labels:
|
||||
service: {{ .Values.name }}
|
||||
spec:
|
||||
podSelector:
|
||||
matchLabels:
|
||||
service: {{ .Values.name }}
|
||||
policyTypes:
|
||||
- Ingress
|
||||
- Egress
|
||||
ingress:
|
||||
- from:
|
||||
- namespaceSelector:
|
||||
matchLabels:
|
||||
name: ingress-nginx
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: {{ .Values.port }}
|
||||
egress:
|
||||
- to:
|
||||
- namespaceSelector: {}
|
||||
podSelector: {}
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 53
|
||||
- protocol: UDP
|
||||
port: 53
|
||||
Loading…
Add table
Add a link
Reference in a new issue