blob: b1928cf278b069d155e1689037ed2cd874d17047 [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",
Matteo Scandolob2d061f2020-09-09 08:31:24 -070065 "-rest_api_address", ":{{ .Values.bbsim_rest_port }}",
66 "-ca", "{{ .Values.controlledActivation }}",
Pragya Arya87231de2020-03-11 17:30:23 +053067 {{ if .Values.enableEvents -}}
68 "-enableEvents",
69 "-kafkaAddress", "{{ .Values.kafkaAddress }}",
70 {{ end -}}
71 {{ if .Values.enablePerf -}}
Matteo Scandolo189d39f2020-04-23 16:11:26 -070072 "-enableperf",
Pragya Arya87231de2020-03-11 17:30:23 +053073 {{ end -}}
Shrey Baidf2a4e2c2020-06-16 22:49:41 +053074 "-kafkaEventTopic", "{{ .Values.kafkaEventTopic }}",
75 {{ if .Values.authRetry -}}
76 "-authRetry",
77 {{ end -}}
78 {{ if .Values.dhcpRetry -}}
79 "-dhcpRetry",
80 {{ end -}}
Zack Williams1849e612018-10-05 15:26:44 -070081 ]
82 ports:
Matteo Scandolo812688a2019-12-11 09:16:53 -080083 - name: "bbsim-{{ .Values.olt_id }}"
Zack Williams1849e612018-10-05 15:26:44 -070084 containerPort: {{ .Values.olt_tcp_port }}
Zack Williams1849e612018-10-05 15:26:44 -070085 protocol: TCP
Matteo Scandolo812688a2019-12-11 09:16:53 -080086 - name: "bbsim-{{ .Values.olt_id }}-api"
87 containerPort: {{ .Values.bbsim_api_port }}
Matteo Scandolo812688a2019-12-11 09:16:53 -080088 protocol: TCP
89 - name: "bbsim-{{ .Values.olt_id }}-sadis"
90 containerPort: {{ .Values.bbsim_sadis_port }}
Matteo Scandolo812688a2019-12-11 09:16:53 -080091 protocol: TCP
Andrey Pozolotin9a109442020-09-07 22:22:39 +030092 - name: "bbsim-{{ .Values.olt_id }}-rest"
93 containerPort: {{ .Values.bbsim_rest_port }}
94 protocol: TCP
Zack Williams1849e612018-10-05 15:26:44 -070095 env:
96 - name: POD_IP
97 valueFrom:
98 fieldRef:
99 fieldPath: status.podIP
100 - name: NAMESPACE
101 valueFrom:
102 fieldRef:
103 fieldPath: metadata.namespace
104 resources:
105{{ toYaml .Values.resources | indent 12 }}
Matteo Scandolo9dab4bd2020-08-24 12:29:48 -0700106 volumeMounts:
107 - name: bbsim-services-config
108 mountPath: /app/configs/services.yaml
109 subPath: services.yaml
110 volumes:
111 - name: bbsim-services-config
112 configMap:
113 name: bbsim-services-{{ .Values.olt_id }}
114 items:
115 - key: bbsimServicesConfig
116 path: services.yaml
Zack Williams1849e612018-10-05 15:26:44 -0700117 {{- with .Values.nodeSelector }}
118 nodeSelector:
119{{ toYaml . | indent 8 }}
120 {{- end }}
121 {{- with .Values.affinity }}
122 affinity:
123{{ toYaml . | indent 8 }}
124 {{- end }}
125 {{- with .Values.tolerations }}
126 tolerations:
127{{ toYaml . | indent 8 }}
128 {{- end }}