From fc3fa1eb8fc8697332727a8f03d965147975b6ed Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Thu, 31 Aug 2017 23:33:16 +0530 Subject: Deploment configuration for CLI OOM deployment configuration for CLI. Change-Id: I4b34c64be7fba5c3bcfbb35ea497b6e5abde8305 Issue-ID: CLI-41 Signed-off-by: subhash kumar singh --- kubernetes/cli/templates/all-service.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 kubernetes/cli/templates/all-service.yaml (limited to 'kubernetes/cli/templates/all-service.yaml') diff --git a/kubernetes/cli/templates/all-service.yaml b/kubernetes/cli/templates/all-service.yaml new file mode 100644 index 0000000000..ffd9f68187 --- /dev/null +++ b/kubernetes/cli/templates/all-service.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + name: cli + namespace: "{{ .Values.nsPrefix }}-cli" + labels: + app: cli +spec: + ports: + - name: 80-port + port: 80 + targetPort: 80 + nodePort: {{ .Values.nodePortPrefix }}60 + type: NodePort + selector: + app: cli -- cgit 1.2.3-korg