blob: 772c62eb7007c5c13662f4946ed4896a65c6ff9c [file] [log] [blame]
Zack Williams1849e612018-10-05 15:26:44 -07001---
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.
serkant.uluderya3a4548f2020-04-01 13:47:17 -070015{{- $log_level := tpl .Values.log_level . }}
Zack Williams1849e612018-10-05 15:26:44 -070016
David K. Bainbridgee1aba802020-06-25 21:53:17 -070017apiVersion: apps/v1
Zack Williams1849e612018-10-05 15:26:44 -070018kind: Deployment
19metadata:
20 name: {{ template "bbsim.fullname" . }}
Jonathan Hartf6c66e22020-02-10 13:47:19 -080021 namespace: {{ .Release.Namespace }}
Zack Williams1849e612018-10-05 15:26:44 -070022 labels:
David Bainbridge70c0f302020-05-22 09:58:34 -070023 app: "bbsim"
24 name: {{ template "bbsim.name" . }}
Zack Williams1849e612018-10-05 15:26:44 -070025 chart: {{ template "bbsim.chart" . }}
26 release: {{ .Release.Name }}
27 heritage: {{ .Release.Service }}
28spec:
29 replicas: {{ .Values.replicaCount }}
30 selector:
31 matchLabels:
David Bainbridge70c0f302020-05-22 09:58:34 -070032 app: "bbsim"
33 name: {{ template "bbsim.name" . }}
Zack Williams1849e612018-10-05 15:26:44 -070034 release: {{ .Release.Name }}
35 template:
36 metadata:
37 labels:
Matteo Scandolo822d0c12020-04-07 18:31:27 -070038 app: "bbsim"
David Bainbridge70c0f302020-05-22 09:58:34 -070039 name: {{ template "bbsim.name" . }}
Zack Williams1849e612018-10-05 15:26:44 -070040 release: {{ .Release.Name }}
Matteo Scandolo822d0c12020-04-07 18:31:27 -070041 app.kubernetes.io/name: "bbsim"
42 app.kubernetes.io/version: {{ quote .Chart.AppVersion }}
43 app.kubernetes.io/component: "device-emulator"
44 app.kubernetes.io/part-of: "voltha"
45 app.kubernetes.io/managed-by: {{ quote .Release.Service }}
46 helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Zack Williams1849e612018-10-05 15:26:44 -070047 spec:
48 serviceAccount: {{ .Values.serviceAccountName }}
49 serviceAccountName: {{ .Values.serviceAccountName }}
50 containers:
51 - name: {{ .Chart.Name }}
serkant.uluderya3a4548f2020-04-01 13:47:17 -070052 image: '{{ tpl .Values.images.bbsim.registry . }}{{ tpl .Values.images.bbsim.repository . }}:{{ tpl ( tpl .Values.images.bbsim.tag . ) . }}'
53 imagePullPolicy: {{ tpl .Values.images.bbsim.pullPolicy . }}
Zack Williams1849e612018-10-05 15:26:44 -070054 securityContext:
55 privileged: true
56 command: [
57 "/app/bbsim",
Andrey Pozolotinb8fb0162020-09-10 16:04:20 +030058 "-openolt_address", ":{{ .Values.olt_tcp_port }}",
Matteo Scandolo3ed02892019-10-07 09:57:06 -070059 "-olt_id", "{{ .Values.olt_id }}",
60 "-nni", "{{ .Values.nni }}",
61 "-pon", "{{ .Values.pon }}",
62 "-onu", "{{ .Values.onu }}",
Matteo Scandolo9b10cf62020-09-30 15:00:51 -070063 "-oltRebootDelay", "{{ .Values.oltRebootDelay }}",
serkant.uluderya3a4548f2020-04-01 13:47:17 -070064 "-logLevel", "{{ $log_level }}",
Pragya Arya87231de2020-03-11 17:30:23 +053065 "-delay", "{{ .Values.delay }}",
Matteo Scandolo9dab4bd2020-08-24 12:29:48 -070066 "-services", "configs/services.yaml",
Matteo Scandolob2d061f2020-09-09 08:31:24 -070067 "-rest_api_address", ":{{ .Values.bbsim_rest_port }}",
68 "-ca", "{{ .Values.controlledActivation }}",
Pragya Arya87231de2020-03-11 17:30:23 +053069 {{ if .Values.enableEvents -}}
70 "-enableEvents",
71 "-kafkaAddress", "{{ .Values.kafkaAddress }}",
72 {{ end -}}
73 {{ if .Values.enablePerf -}}
Matteo Scandolo189d39f2020-04-23 16:11:26 -070074 "-enableperf",
Pragya Arya87231de2020-03-11 17:30:23 +053075 {{ end -}}
Shrey Baidf2a4e2c2020-06-16 22:49:41 +053076 "-kafkaEventTopic", "{{ .Values.kafkaEventTopic }}",
77 {{ if .Values.authRetry -}}
78 "-authRetry",
79 {{ end -}}
80 {{ if .Values.dhcpRetry -}}
81 "-dhcpRetry",
82 {{ end -}}
Zack Williams1849e612018-10-05 15:26:44 -070083 ]
84 ports:
Matteo Scandolo812688a2019-12-11 09:16:53 -080085 - name: "bbsim-{{ .Values.olt_id }}"
Zack Williams1849e612018-10-05 15:26:44 -070086 containerPort: {{ .Values.olt_tcp_port }}
Zack Williams1849e612018-10-05 15:26:44 -070087 protocol: TCP
Matteo Scandolo812688a2019-12-11 09:16:53 -080088 - name: "bbsim-{{ .Values.olt_id }}-api"
89 containerPort: {{ .Values.bbsim_api_port }}
Matteo Scandolo812688a2019-12-11 09:16:53 -080090 protocol: TCP
91 - name: "bbsim-{{ .Values.olt_id }}-sadis"
92 containerPort: {{ .Values.bbsim_sadis_port }}
Matteo Scandolo812688a2019-12-11 09:16:53 -080093 protocol: TCP
Andrey Pozolotin9a109442020-09-07 22:22:39 +030094 - name: "bbsim-{{ .Values.olt_id }}-rest"
95 containerPort: {{ .Values.bbsim_rest_port }}
96 protocol: TCP
Zack Williams1849e612018-10-05 15:26:44 -070097 env:
98 - name: POD_IP
99 valueFrom:
100 fieldRef:
101 fieldPath: status.podIP
102 - name: NAMESPACE
103 valueFrom:
104 fieldRef:
105 fieldPath: metadata.namespace
106 resources:
107{{ toYaml .Values.resources | indent 12 }}
Matteo Scandolo9dab4bd2020-08-24 12:29:48 -0700108 volumeMounts:
109 - name: bbsim-services-config
110 mountPath: /app/configs/services.yaml
111 subPath: services.yaml
112 volumes:
113 - name: bbsim-services-config
114 configMap:
115 name: bbsim-services-{{ .Values.olt_id }}
116 items:
117 - key: bbsimServicesConfig
118 path: services.yaml
Zack Williams1849e612018-10-05 15:26:44 -0700119 {{- with .Values.nodeSelector }}
120 nodeSelector:
121{{ toYaml . | indent 8 }}
122 {{- end }}
123 {{- with .Values.affinity }}
124 affinity:
125{{ toYaml . | indent 8 }}
126 {{- end }}
127 {{- with .Values.tolerations }}
128 tolerations:
129{{ toYaml . | indent 8 }}
130 {{- end }}