diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-04-10 15:36:28 -0700 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2019-04-10 15:36:28 -0700 |
commit | 858a95e48507cde00977408ee6cf8feddc13e063 (patch) | |
tree | aec905804238a3020e3228a5e5c285f10e9341c3 /vnfs/DAaaS/model-repo/templates/networkpolicy.yaml | |
parent | e339330753f696f21c13f1ef70087a474a85308d (diff) |
Model Repo package
Added Model repo package consists of Minio Helm charts
Change-Id: I47427cbc7e745f658a1dcf75742b3ae3226fc3d0
Issue-ID: ONAPARC-487
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Diffstat (limited to 'vnfs/DAaaS/model-repo/templates/networkpolicy.yaml')
-rw-r--r-- | vnfs/DAaaS/model-repo/templates/networkpolicy.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vnfs/DAaaS/model-repo/templates/networkpolicy.yaml b/vnfs/DAaaS/model-repo/templates/networkpolicy.yaml new file mode 100644 index 00000000..de57f485 --- /dev/null +++ b/vnfs/DAaaS/model-repo/templates/networkpolicy.yaml @@ -0,0 +1,25 @@ +{{- if .Values.networkPolicy.enabled }} +kind: NetworkPolicy +apiVersion: {{ template "minio.networkPolicy.apiVersion" . }} +metadata: + name: {{ template "minio.fullname" . }} + labels: + app: {{ template "minio.name" . }} + chart: {{ template "minio.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +spec: + podSelector: + matchLabels: + app: {{ template "minio.name" . }} + release: {{ .Release.Name }} + ingress: + - ports: + - port: {{ .Values.service.port }} + {{- if not .Values.networkPolicy.allowExternal }} + from: + - podSelector: + matchLabels: + {{ template "minio.name" . }}-client: "true" + {{- end }} +{{- end }} |