diff options
author | Pramod <pramod.raghavendra.jayathirth@intel.com> | 2019-04-17 15:02:56 -0700 |
---|---|---|
committer | Pramod <pramod.raghavendra.jayathirth@intel.com> | 2019-04-17 15:06:13 -0700 |
commit | c8038e7451fb5bf2b9d5e7b70e5a29d56f9202a7 (patch) | |
tree | 113ad9f20181c6a63e53a79ffc1b7a2694c289c9 /vnfs/DAaaS/minio/templates/service.yaml | |
parent | 2b21e905e3fa4593ec7c2f1dd16ffb28a97eb56d (diff) |
Fixed the chart name for Minio Model repo
The Chart name is incosistent with the minio related manifests.
Change-Id: I42b6e9597651faba4c79cbeb77db2adffe191952
Issue-ID: ONAPARC-487
Signed-off-by: Pramod <pramod.raghavendra.jayathirth@intel.com>
Diffstat (limited to 'vnfs/DAaaS/minio/templates/service.yaml')
-rw-r--r-- | vnfs/DAaaS/minio/templates/service.yaml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vnfs/DAaaS/minio/templates/service.yaml b/vnfs/DAaaS/minio/templates/service.yaml new file mode 100644 index 00000000..0799b287 --- /dev/null +++ b/vnfs/DAaaS/minio/templates/service.yaml @@ -0,0 +1,46 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "minio.fullname" . }} + labels: + app: {{ template "minio.name" . }} + chart: {{ template "minio.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} +{{- if .Values.service.annotations }} + annotations: +{{ toYaml .Values.service.annotations | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.service.type "ClusterIP" "") (empty .Values.service.type)) }} + {{- if eq .Values.mode "distributed" }} + clusterIP: None + {{- else }} + type: ClusterIP + {{- end }} + {{- if not (empty .Values.service.clusterIP) }} + clusterIP: {{ .Values.service.clusterIP }} + {{end}} +{{- else if eq .Values.service.type "LoadBalancer" }} + type: {{ .Values.service.type }} + loadBalancerIP: {{ default "" .Values.service.loadBalancerIP }} +{{- else }} + type: {{ .Values.service.type }} +{{- end }} + ports: + - name: service + port: 9000 + targetPort: {{ .Values.service.port }} + protocol: TCP +{{- if (and (eq .Values.service.type "NodePort") ( .Values.service.nodePort)) }} + nodePort: {{ .Values.service.nodePort }} +{{- end}} +{{- if .Values.service.externalIPs }} + externalIPs: +{{- range $i , $ip := .Values.service.externalIPs }} + - {{ $ip }} +{{- end }} +{{- end }} + selector: + app: {{ template "minio.name" . }} + release: {{ .Release.Name }} |