blob: 5533a6c6634987401c07b5249d8c989f3d449a00 [file] [log] [blame]
David Bainbridgecd30e542019-05-31 20:52:56 +00001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Rohan Agrawale2f4a1e2020-02-04 06:28:36 +000014{{- $log_level := tpl .Values.adapter_open_olt.log_level . | upper }}
Matteo Scandoloe9a01f72020-05-05 09:33:59 -070015---
David Bainbridgecd30e542019-05-31 20:52:56 +000016apiVersion: apps/v1
17kind: Deployment
18metadata:
David Bainbridge2bdd4302020-06-09 17:13:18 -070019 name: "{{ template "fullname" . }}"
David Bainbridgecd30e542019-05-31 20:52:56 +000020 namespace: {{ .Release.Namespace }}
David Bainbridge534a73d2019-08-30 18:57:23 +000021 {{- if or (hasKey .Values "extra_deployment_labels") (hasKey .Values "openolt_deployment_labels") }}
22 labels:
23 {{- if hasKey .Values "extra_deployment_labels" }}
24 {{- range $key, $val := .Values.extra_deployment_labels }}
25 {{ $key }}: {{ $val | quote }}
26 {{- end }}
27 {{- end }}
28 {{- if hasKey .Values "openolt_deployment_labels" }}
29 {{- range $key, $val := .Values.openolt_deployment_labels }}
30 {{ $key }}: {{ $val | quote }}
31 {{- end }}
32 {{- end }}
33 {{- end }}
David Bainbridgecd30e542019-05-31 20:52:56 +000034spec:
David Bainbridgecd30e542019-05-31 20:52:56 +000035 selector:
36 matchLabels:
37 app: adapter-open-olt
David Bainbridge8595b3b2020-06-05 12:23:05 -070038 release: {{ .Release.Name }}
David Bainbridgecd30e542019-05-31 20:52:56 +000039 template:
40 metadata:
David Bainbridge8595b3b2020-06-05 12:23:05 -070041 namespace: {{ .Release.Namespace }}
David Bainbridgecd30e542019-05-31 20:52:56 +000042 labels:
43 app: adapter-open-olt
David Bainbridge8595b3b2020-06-05 12:23:05 -070044 release: {{ .Release.Name }}
David Bainbridge1f888042019-06-24 18:02:01 +000045 app.kubernetes.io/name: "adapter-open-olt"
46 app.kubernetes.io/version: {{ quote .Chart.AppVersion }}
47 app.kubernetes.io/component: "adapter"
48 app.kubernetes.io/part-of: "voltha"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080049 app.kubernetes.io/stack: "{{ .Values.global.stack_name }}"
David Bainbridge1f888042019-06-24 18:02:01 +000050 app.kubernetes.io/managed-by: {{ quote .Release.Service }}
51 helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
David Bainbridge534a73d2019-08-30 18:57:23 +000052 {{- if hasKey .Values "extra_pod_labels" }}
53 {{- range $key, $val := .Values.extra_pod_labels }}
54 {{ $key }}: {{ $val | quote }}
55 {{- end }}
56 {{- end }}
57 {{- if hasKey .Values "openolt_pod_labels" }}
58 {{- range $key, $val := .Values.openolt_pod_labels }}
59 {{ $key }}: {{ $val | quote }}
60 {{- end }}
61 {{- end }}
David Bainbridgecd30e542019-05-31 20:52:56 +000062 spec:
David Bainbridge8595b3b2020-06-05 12:23:05 -070063 {{- if .Values.securityContext.enabled }}
64 securityContext:
65 runAsUser: {{ .Values.securityContext.runAsUser }}
66 runAsGroup: {{ .Values.securityContext.runAsGroup }}
67 fsGroup: {{ .Values.securityContext.fsGroup }}
68 {{- end }}
Girish Gowdra12231512020-06-29 13:00:48 -070069 {{- if .Values.nodeAffinityConfig.enabled }}
70 affinity:
71 nodeAffinity:
72 requiredDuringSchedulingIgnoredDuringExecution:
73 nodeSelectorTerms:
74 - matchExpressions:
75 - key: "{{ .Values.nodeAffinityConfig.node_label_key }}"
76 operator: In
77 values:
78 - "{{ .Values.nodeAffinityConfig.node_label_value }}"
79 {{- end }}
David Bainbridgecd30e542019-05-31 20:52:56 +000080 containers:
81 - name: adapter-open-olt
David Bainbridge03706e62019-10-18 17:59:24 +000082 image: '{{ tpl .Values.images.adapter_open_olt.registry . }}{{ tpl .Values.images.adapter_open_olt.repository . }}:{{ tpl ( tpl .Values.images.adapter_open_olt.tag . ) . }}'
David Bainbridgecd30e542019-05-31 20:52:56 +000083 imagePullPolicy: {{ tpl .Values.images.adapter_open_olt.pullPolicy . }}
David Bainbridge8595b3b2020-06-05 12:23:05 -070084 env:
divyadesai423be072020-02-20 12:05:01 +000085 - name: COMPONENT_NAME
86 valueFrom:
87 fieldRef:
88 fieldPath: metadata.labels['app.kubernetes.io/name']
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070089 - name: KV_STORE_DATAPATH_PREFIX
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080090 value: {{ tpl .Values.adapter_open_olt.kv_store_data_prefix . }}
David Bainbridgecd30e542019-05-31 20:52:56 +000091 args:
David Bainbridge6a43d8d2019-06-18 19:09:09 +000092 - "/app/openolt"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080093 - "--kafka_adapter_address={{ tpl .Values.services.kafka.adapter.address . }}"
94 - "--kafka_cluster_address={{ tpl .Values.services.kafka.cluster.address . }}"
95 - "--core_topic={{ tpl .Values.adapter_open_olt.topics.core_topic . }}"
96 - "--adapter_topic={{ tpl .Values.adapter_open_olt.topics.adapter_open_olt_topic . }}"
97 - "--kv_store_address={{ tpl .Values.services.etcd.address . }}"
Andrea Campanella6838a802020-11-19 15:50:23 +010098 - "--kv_store_request_timeout={{ tpl .Values.adapter_open_olt.kv_store_timeout . }}"
Matteo Scandoloc250ddd2019-12-12 13:34:27 -080099 - "--log_level={{ $log_level }}"
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -0700100 - "--current_replica={{ .Values.replicas.current_replica }}"
101 - "--total_replica={{ .Values.replicas.total_replica }}"
Neha Sharma7d3d6be2020-05-14 20:02:17 +0000102 - "--probe_address=:8080"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800103 - "--trace_enabled={{ .Values.global.tracing.enabled }}"
104 - "--trace_agent_address={{ tpl .Values.services.tracing_agent.address . }}"
105 - "--log_correlation_enabled={{ .Values.global.log_correlation.enabled }}"
106 - "--omcc_encryption={{ .Values.global.omcc_encryption }}"
David Bainbridge2bdd4302020-06-09 17:13:18 -0700107 {{- if .Values.securityContext.enabled }}
108 securityContext:
109 allowPrivilegeEscalation: false
110 {{- end }}
Rohan Agrawal69303562019-10-22 12:24:58 +0000111 livenessProbe:
112 httpGet:
113 path: /healthz
114 port: 8080
115 initialDelaySeconds: 10
116 periodSeconds: 5
117 readinessProbe:
118 httpGet:
119 path: /readz
120 port: 8080
121 initialDelaySeconds: 10
122 periodSeconds: 5