blob: 9659dea73e7d4097fdb718b1c557a49ae2310650 [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",
Matteo Scandolo3ed02892019-10-07 09:57:06 -070058 "-olt_id", "{{ .Values.olt_id }}",
59 "-nni", "{{ .Values.nni }}",
60 "-pon", "{{ .Values.pon }}",
61 "-onu", "{{ .Values.onu }}",
serkant.uluderya3a4548f2020-04-01 13:47:17 -070062 "-logLevel", "{{ $log_level }}",
Pragya Arya87231de2020-03-11 17:30:23 +053063 "-delay", "{{ .Values.delay }}",
Matteo Scandolo9dab4bd2020-08-24 12:29:48 -070064 "-services", "configs/services.yaml",
Pragya Arya87231de2020-03-11 17:30:23 +053065 {{ if .Values.enableEvents -}}
66 "-enableEvents",
67 "-kafkaAddress", "{{ .Values.kafkaAddress }}",
68 {{ end -}}
69 {{ if .Values.enablePerf -}}
Matteo Scandolo189d39f2020-04-23 16:11:26 -070070 "-enableperf",
Pragya Arya87231de2020-03-11 17:30:23 +053071 {{ end -}}
Shrey Baidf2a4e2c2020-06-16 22:49:41 +053072 "-kafkaEventTopic", "{{ .Values.kafkaEventTopic }}",
73 {{ if .Values.authRetry -}}
74 "-authRetry",
75 {{ end -}}
76 {{ if .Values.dhcpRetry -}}
77 "-dhcpRetry",
78 {{ end -}}
Andrey Pozolotin9a109442020-09-07 22:22:39 +030079 {{ if .Values.bbsim_rest_port -}}
80 "-rest_api_address", ":{{ .Values.bbsim_rest_port }}"
81 {{ end -}}
Zack Williams1849e612018-10-05 15:26:44 -070082 ]
83 ports:
Matteo Scandolo812688a2019-12-11 09:16:53 -080084 - name: "bbsim-{{ .Values.olt_id }}"
Zack Williams1849e612018-10-05 15:26:44 -070085 containerPort: {{ .Values.olt_tcp_port }}
Zack Williams1849e612018-10-05 15:26:44 -070086 protocol: TCP
Matteo Scandolo812688a2019-12-11 09:16:53 -080087 - name: "bbsim-{{ .Values.olt_id }}-api"
88 containerPort: {{ .Values.bbsim_api_port }}
Matteo Scandolo812688a2019-12-11 09:16:53 -080089 protocol: TCP
90 - name: "bbsim-{{ .Values.olt_id }}-sadis"
91 containerPort: {{ .Values.bbsim_sadis_port }}
Matteo Scandolo812688a2019-12-11 09:16:53 -080092 protocol: TCP
Andrey Pozolotin9a109442020-09-07 22:22:39 +030093 - name: "bbsim-{{ .Values.olt_id }}-rest"
94 containerPort: {{ .Values.bbsim_rest_port }}
95 protocol: TCP
Zack Williams1849e612018-10-05 15:26:44 -070096 env:
97 - name: POD_IP
98 valueFrom:
99 fieldRef:
100 fieldPath: status.podIP
101 - name: NAMESPACE
102 valueFrom:
103 fieldRef:
104 fieldPath: metadata.namespace
105 resources:
106{{ toYaml .Values.resources | indent 12 }}
Matteo Scandolo9dab4bd2020-08-24 12:29:48 -0700107 volumeMounts:
108 - name: bbsim-services-config
109 mountPath: /app/configs/services.yaml
110 subPath: services.yaml
111 volumes:
112 - name: bbsim-services-config
113 configMap:
114 name: bbsim-services-{{ .Values.olt_id }}
115 items:
116 - key: bbsimServicesConfig
117 path: services.yaml
Zack Williams1849e612018-10-05 15:26:44 -0700118 {{- with .Values.nodeSelector }}
119 nodeSelector:
120{{ toYaml . | indent 8 }}
121 {{- end }}
122 {{- with .Values.affinity }}
123 affinity:
124{{ toYaml . | indent 8 }}
125 {{- end }}
126 {{- with .Values.tolerations }}
127 tolerations:
128{{ toYaml . | indent 8 }}
129 {{- end }}