blob: 4e1cfe41d4160d173b839a37aca2ba6c76deddc6 [file] [log] [blame]
Matteo Scandolo71d97d92021-06-24 11:58:32 +02001---
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{{- $log_level := tpl .Values.log_level . }}
16
17apiVersion: apps/v1
18kind: Deployment
19metadata:
20 name: {{ template "bbsim.fullname" . }}
21 namespace: {{ .Release.Namespace }}
22 labels:
23 app: "bbsim"
24 name: {{ template "bbsim.name" . }}
25 chart: {{ template "bbsim.chart" . }}
26 release: {{ .Release.Name }}
27 heritage: {{ .Release.Service }}
28spec:
29 replicas: {{ .Values.replicaCount }}
30 selector:
31 matchLabels:
32 app: "bbsim"
33 name: {{ template "bbsim.name" . }}
34 release: {{ .Release.Name }}
35 template:
36 metadata:
37 labels:
38 app: "bbsim"
39 name: {{ template "bbsim.name" . }}
40 release: {{ .Release.Name }}
41 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 }}"
47 spec:
48 serviceAccount: {{ .Values.serviceAccountName }}
49 serviceAccountName: {{ .Values.serviceAccountName }}
50 containers:
51 - name: {{ .Chart.Name }}
52 image: '{{ tpl .Values.images.bbsim.registry . }}{{ tpl .Values.images.bbsim.repository . }}:{{ tpl ( tpl .Values.images.bbsim.tag . ) . }}'
53 imagePullPolicy: {{ tpl .Values.images.bbsim.pullPolicy . }}
54 securityContext:
55 privileged: {{ .Values.privileged }}
56 livenessProbe:
57 exec:
58 command:
59 - bbsimctl
60 - olt
61 - get
62 initialDelaySeconds: 5
63 periodSeconds: 30
Matteo Scandolo70cadc52021-07-08 17:14:52 -070064 timeoutSeconds: 5
Matteo Scandolo71d97d92021-06-24 11:58:32 +020065 readinessProbe:
66 httpGet:
67 path: /v2/cfg
68 port: {{ .Values.bbsim_sadis_port }}
69 httpHeaders:
70 initialDelaySeconds: 5
71 periodSeconds: 30
Matteo Scandolo70cadc52021-07-08 17:14:52 -070072 timeoutSeconds: 5
Matteo Scandolo71d97d92021-06-24 11:58:32 +020073 command: [
74 "/app/bbsim",
Matteo Scandolo70cadc52021-07-08 17:14:52 -070075 "-openolt_address", "0.0.0.0:{{ .Values.olt_tcp_port }}",
Andrea Campanella97c47ab2021-07-21 20:59:44 +020076 "-dmi_server_address", ":{{ .Values.bbsim_dmi_port}}",
Matteo Scandolo71d97d92021-06-24 11:58:32 +020077 "-olt_id", "{{ .Values.olt_id }}",
78 "-nni", "{{ .Values.nni }}",
79 "-pon", "{{ .Values.pon }}",
80 "-onu", "{{ .Values.onu }}",
81 "-uni", "{{ .Values.uni }}",
Elia Battistonffb9da52022-01-20 10:38:05 +010082 "-pots", "{{ .Values.pots }}",
Matteo Scandolo71d97d92021-06-24 11:58:32 +020083 "-bp_format", "{{ .Values.bp_format }}",
84 "-oltRebootDelay", "{{ .Values.oltRebootDelay }}",
85 "-logLevel", "{{ $log_level }}",
86 "-delay", "{{ .Values.delay }}",
87 "-services", "configs/services.yaml",
88 "-rest_api_address", ":{{ .Values.bbsim_rest_port }}",
89 "-ca", "{{ .Values.controlledActivation }}",
90 "-omci_response_rate", "{{ .Values.omci_response_rate }}",
91 {{ if .Values.enableEvents -}}
92 "-enableEvents",
93 "-kafkaAddress", "{{ .Values.kafkaAddress }}",
94 {{ end -}}
95 {{ if .Values.enablePerf -}}
96 "-enableperf",
97 {{ end -}}
98 "-kafkaEventTopic", "{{ .Values.kafkaEventTopic }}",
99 {{ if .Values.authRetry -}}
100 "-authRetry",
101 {{ end -}}
102 {{ if .Values.dhcpRetry -}}
103 "-dhcpRetry",
104 {{ end -}}
105 ]
106 ports:
107 - name: "bbsim-{{ .Values.olt_id }}"
108 containerPort: {{ .Values.olt_tcp_port }}
109 protocol: TCP
110 - name: "bbsim-{{ .Values.olt_id }}-api"
111 containerPort: {{ .Values.bbsim_api_port }}
112 protocol: TCP
113 - name: "bbsim-{{ .Values.olt_id }}-sadis"
114 containerPort: {{ .Values.bbsim_sadis_port }}
115 protocol: TCP
116 - name: "bbsim-{{ .Values.olt_id }}-rest"
117 containerPort: {{ .Values.bbsim_rest_port }}
118 protocol: TCP
119 - name: "bbsim-{{ .Values.olt_id }}-dmi"
120 containerPort: {{ .Values.bbsim_dmi_port }}
121 protocol: TCP
122 env:
123 - name: POD_IP
124 valueFrom:
125 fieldRef:
126 fieldPath: status.podIP
127 - name: NAMESPACE
128 valueFrom:
129 fieldRef:
130 fieldPath: metadata.namespace
131 resources:
132{{ toYaml .Values.resources | indent 12 }}
133 volumeMounts:
134 - name: bbsim-services-config
135 mountPath: /app/configs/services.yaml
136 subPath: services.yaml
137 volumes:
138 - name: bbsim-services-config
139 configMap:
140 name: bbsim-services-{{ .Values.olt_id }}
141 items:
142 - key: bbsimServicesConfig
143 path: services.yaml
144 {{- with .Values.nodeSelector }}
145 nodeSelector:
146{{ toYaml . | indent 8 }}
147 {{- end }}
148 {{- with .Values.affinity }}
149 affinity:
150{{ toYaml . | indent 8 }}
151 {{- end }}
152 {{- with .Values.tolerations }}
153 tolerations:
154{{ toYaml . | indent 8 }}
155 {{- end }}