blob: 0861d4d4799ca33ae59727db0030315579635d72 [file] [log] [blame]
Richard Jankowski7ce3d702018-10-18 15:56:22 -04001# Copyright 2018 the original author or authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: v1
16kind: Service
17metadata:
18 name: rw-core1
19 namespace: voltha
20spec:
21 clusterIP: None
22 ports:
23 - name: grpc
24 port: 50057
25 targetPort: 50057
26 selector:
27 app: rw-core
28---
29apiVersion: apps/v1
30kind: Deployment
31metadata:
32 name: rw-core1
33 namespace: voltha
34spec:
35 replicas: 2
36 selector:
37 matchLabels:
38 app: rw-core
39 template:
40 metadata:
41 labels:
42 app: rw-core
43 annotations:
44 cni: "calico"
45 spec:
46 containers:
47 - name: voltha
48 image: voltha-rw-core
49 env:
50 - name: NAMESPACE
51 valueFrom:
52 fieldRef:
53 fieldPath: metadata.namespace
54 - name: POD_IP
55 valueFrom:
56 fieldRef:
57 fieldPath: status.podIP
58 args:
59 - "/app/rw_core"
60 - "-kv_store_type=etcd"
61 - "-kv_store_host=etcd.$(NAMESPACE).svc.cluster.local"
62 - "-kv_store_port=2379"
63 - "-grpc_host=$(POD_IP)"
64 - "-grpc_port=50057"
65 - "-banner=true"
66 - "-kafka_adapter_host=kafka.$(NAMESPACE).svc.cluster.local"
67 - "-kafka_adapter_port=9092"
68 - "-kafka_cluster_host=kafka.$(NAMESPACE).svc.cluster.local"
69 - "-kafka_cluster_port=9092"
70 - "-rw_core_topic=rwcore"
Richard Jankowski00a04662019-02-05 12:18:53 -050071 - "-kv_store_data_prefix=service/voltha"
72 - "-in_competing_mode=true"
73 - "-timeout_long_request=5000"
Richard Jankowski7ce3d702018-10-18 15:56:22 -040074 - "-log_level=0"
75 ports:
76 - containerPort: 50057
77 name: grpc-port
78 imagePullPolicy: IfNotPresent
79 nodeSelector:
80 nodename: k8s1
81
82
83