Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 1 | --- |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | apiVersion: v1 |
| 17 | kind: Service |
| 18 | metadata: |
| 19 | name: olt |
| 20 | namespace: {{ .Values.global.namespace }} |
| 21 | labels: |
| 22 | name: olt |
| 23 | spec: |
| 24 | ports: |
| 25 | - name: grpc |
| 26 | port: 50060 |
| 27 | targetPort: 50060 |
| 28 | selector: |
| 29 | app: olt |
| 30 | --- |
| 31 | apiVersion: apps/v1beta1 |
| 32 | kind: Deployment |
| 33 | metadata: |
| 34 | name: olt |
| 35 | namespace: {{ .Values.global.namespace }} |
| 36 | spec: |
| 37 | replicas: 1 |
| 38 | template: |
| 39 | metadata: |
| 40 | labels: |
| 41 | app: olt |
| 42 | annotations: |
Jonathan Hart | 26867b2 | 2018-08-14 14:53:28 -0700 | [diff] [blame] | 43 | cni: "calico,pon1" |
Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 44 | spec: |
| 45 | containers: |
| 46 | - name: olt |
Zack Williams | 07ef42c | 2018-11-09 13:48:26 -0700 | [diff] [blame] | 47 | image: "{{ .Values.global.registry }}{{ .Values.images.olt.repository }}:{{ tpl .Values.images.olt.tag . }}" |
Zack Williams | 2749ae5 | 2018-09-28 09:43:43 -0700 | [diff] [blame] | 48 | imagePullPolicy: {{ .Values.images.olt.pullPolicy }} |
Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 49 | env: |
| 50 | - name: POD_IP |
| 51 | valueFrom: |
| 52 | fieldRef: |
| 53 | fieldPath: status.podIP |
| 54 | - name: NAMESPACE |
| 55 | valueFrom: |
| 56 | fieldRef: |
| 57 | fieldPath: metadata.namespace |
Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 58 | args: |
| 59 | - "/app/ponsim" |
| 60 | - "-device_type" |
| 61 | - "OLT" |
| 62 | - "-onus" |
| 63 | - "4" |
| 64 | - "-internal_if" |
Jonathan Hart | 26867b2 | 2018-08-14 14:53:28 -0700 | [diff] [blame] | 65 | - "eth1" |
Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 66 | - "-external_if" |
Jonathan Hart | 26867b2 | 2018-08-14 14:53:28 -0700 | [diff] [blame] | 67 | - "eth1" |
Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 68 | - "-vcore_endpoint" |
| 69 | - "vcore" |
| 70 | - "-promiscuous" |
Andy Bavier | 2259a6b | 2018-07-12 15:27:48 -0700 | [diff] [blame] | 71 | ports: |
| 72 | - containerPort: 50060 |
| 73 | name: grpc-port |