Deploment configuration for CLI
OOM deployment configuration for CLI.
Change-Id: I4b34c64be7fba5c3bcfbb35ea497b6e5abde8305
Issue-ID: CLI-41
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
diff --git a/kubernetes/cli/templates/cli-deployment.yaml b/kubernetes/cli/templates/cli-deployment.yaml
new file mode 100644
index 0000000..88cb3eb
--- /dev/null
+++ b/kubernetes/cli/templates/cli-deployment.yaml
@@ -0,0 +1,34 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+ labels:
+ app: cli
+ name: cli
+ namespace: "{{ .Values.nsPrefix }}-cli"
+spec:
+ selector:
+ matchLabels:
+ app: cli
+ template:
+ metadata:
+ labels:
+ app: cli
+ name: cli
+ spec:
+ containers:
+ - image: {{ .Values.image.cliImage}}
+ imagePullPolicy: {{ .Values.pullPolicy }}
+ name: "cli"
+ env:
+ - name: CLI_MODE
+ value: daemon
+ ports:
+ - containerPort: 80
+ name: cli
+ readinessProbe:
+ tcpSocket:
+ port: 80
+ initialDelaySeconds: 5
+ periodSeconds: 10
+ imagePullSecrets:
+ - name: "{{ .Values.nsPrefix }}-docker-registry-key"